import { PLACEHOLDER_SLUGS } from '@akinon/pz-theme/src/chrome/placeholder-slugs'; import { ROUTES } from 'routes'; import AccountPageSlot from '../../account-page-slot'; // The order list lives in its own route group so its takeover slug cannot // swallow the order detail and cancellation screens under the same segment. export default function OrdersLayout({ children }: { children: React.ReactNode; }) { return ( {children} ); }